home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 2000 November: Tool Chest
/
Dev.CD Nov 00 TC Disk 2.toast
/
mac
/
Tool Chest
/
Text
/
WASTE 1.3a6
/
WASTE C⁄C++ Headers
/
LongCoords.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-12-01
|
426 b
|
34 lines
|
[
TEXT/CWIE
]
/*
* LongCoords.h
*
* C/C++ interface to the WASTE text engine:
* Long Coordinates
*
* version 1.3a4
*
* Copyright (c) 1993-1997 Marco Piovanelli
* All Rights Reserved
*
*/
#ifndef __LONGCOORDINATES__
#ifndef _LongCoords_
#define _LongCoords_
typedef struct LongPt
{
SInt32 v;
SInt32 h;
} LongPt;
typedef struct LongRect
{
SInt32 top;
SInt32 left;
SInt32 bottom;
SInt32 right;
} LongRect;
#endif
#endif